home *** CD-ROM | disk | FTP | other *** search
/ One Click 21 (Special) / OC021.iso / Juegos / King of Skeleton / King of Skeleton.swf / scripts / __Packages / WarningInstance.as < prev   
Encoding:
Text File  |  2006-02-02  |  248 b   |  15 lines

  1. class WarningInstance
  2. {
  3.    var t;
  4.    var d;
  5.    function WarningInstance(type, dist)
  6.    {
  7.       this.t = type;
  8.       this.d = dist;
  9.    }
  10.    function toString()
  11.    {
  12.       return "(type=" + this.t + ", distance=" + this.d + ")";
  13.    }
  14. }
  15.